home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxpflat.c < prev    next >
C/C++ Source or Header  |  1997-04-27  |  14KB  |  449 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxpflat.c */
  20. /* Path flattening algorithms */
  21. #include "gx.h"
  22. #include "gxarith.h"
  23. #include "gxfixed.h"
  24. #include "gzpath.h"
  25.  
  26. /* Define whether to merge nearly collinear line segments when flattening */
  27. /* curves.  This is very good for performance, but we feel a little */
  28. /* uneasy about its effects on character appearance. */
  29. #define MERGE_COLLINEAR_SEGMENTS 1
  30.  
  31. /* ---------------- Curve flattening ---------------- */
  32.  
  33. #define x1 pc->p1.x
  34. #define y1 pc->p1.y
  35. #define x2 pc->p2.x
  36. #define y2 pc->p2.y
  37. #define x3 pc->pt.x
  38. #define y3 pc->pt.y
  39.  
  40. /*
  41.  * To calculate how many points to sample along a path in order to
  42.  * approximate it to the desired degree of flatness, we define
  43.  *    dist((x,y)) = abs(x) + abs(y);
  44.  * then the number of points we need is
  45.  *    N = 1 + sqrt(3/4 * D / flatness),
  46.  * where
  47.  *    D = max(dist(p0 - 2*p1 + p2), dist(p1 - 2*p2 + p3)).
  48.  * Since we are going to use a power of 2 for the number of intervals,
  49.  * we can avoid the square root by letting
  50.  *    N = 1 + 2^(ceiling(log2(3/4 * D / flatness) / 2)).
  51.  * (Reference: DEC Paris Research Laboratory report #1, May 1989.)
  52.  *
  53.  * We treat two cases specially.  First, if the curve is very
  54.  * short, we halve the flatness, to avoid turning short shallow curves
  55.  * into short straight lines.  Second, if the curve forms part of a
  56.  * character (indicated by flatness = 0), we let
  57.  *    N = 1 + 2 * max(abs(x3-x0), abs(y3-y0)).
  58.  * This is probably too conservative, but it produces good results.
  59.  */
  60. int
  61. gx_curve_log2_samples(fixed x0, fixed y0, const curve_segment *pc,
  62.   fixed fixed_flat)
  63. {    fixed
  64.       x03 = x3 - x0,
  65.       y03 = y3 - y0;
  66.     int k;
  67.  
  68.     if ( x03 < 0 )
  69.       x03 = -x03;
  70.     if ( y03 < 0 )
  71.       y03 = -y03;
  72.     if ( (x03 | y03) < int2fixed(16) )
  73.       fixed_flat >>= 1;
  74.     if ( fixed_flat == 0 )
  75.     {    /* Use the conservative method. */
  76.         fixed m = max(x03, y03);
  77.         for ( k = 1; m > fixed_1; )
  78.           k++, m >>= 1;
  79.     }
  80.     else
  81.     {    const fixed
  82.           x12 = x1 - x2,
  83.           y12 = y1 - y2,
  84.           dx0 = x0 - x1 - x12,
  85.           dy0 = y0 - y1 - y12,
  86.           dx1 = x12 - x2 + x3,
  87.           dy1 = y12 - y2 + y3,
  88.           adx0 = any_abs(dx0),
  89.           ady0 = any_abs(dy0),
  90.           adx1 = any_abs(dx1),
  91.           ady1 = any_abs(dy1);
  92.         fixed
  93.           d = max(adx0, adx1) + max(ady0, ady1);
  94.         uint q = (d - (d >> 2) /* 3/4 * D */ + fixed_flat - 1) /
  95.           fixed_flat;
  96.  
  97.         if_debug6('2', "[2]d01=%g,%g d12=%g,%g d23=%g,%g\n",
  98.               fixed2float(x1 - x0), fixed2float(y1 - y0),
  99.               fixed2float(-x12), fixed2float(-y12),
  100.               fixed2float(x3 - x2), fixed2float(y3 - y2));
  101.         if_debug2('2', "     D=%f, flat=%f,",
  102.               fixed2float(d), fixed2float(fixed_flat));
  103.         /* Now we want to set k = ceiling(log2(q) / 2). */
  104.         for ( k = 0; q > 1; )
  105.           k++, q = (q + 3) >> 2;
  106.         if_debug1('2', " k=%d\n", k);
  107.     }
  108.     return k;
  109. }
  110.  
  111. /*
  112.  * Define the maximum number of points for sampling if we want accurate
  113.  * rasterizing.  2^(k_sample_max*3)-1 must fit into a uint with a bit
  114.  * to spare; also, we must be able to compute 1/2^(3*k) by table lookup.
  115.  */
  116. #define k_sample_max min((size_of(int) * 8 - 1) / 3, 10)
  117.  
  118. /*
  119.  * Split a curve segment into two pieces at the (parametric) midpoint.
  120.  * Algorithm is from "The Beta2-split: A special case of the Beta-spline
  121.  * Curve and Surface Representation," B. A. Barsky and A. D. DeRose, IEEE,
  122.  * 1985, courtesy of Crispin Goswell.
  123.  */
  124. private void
  125. split_curve_midpoint(fixed x0, fixed y0, const curve_segment *pc,
  126.   curve_segment *pc1, curve_segment *pc2)
  127. {    /*
  128.      * We have to define midpoint carefully to avoid overflow.
  129.      * (If it overflows, something really pathological is going
  130.      * on, but we could get infinite recursion that way....)
  131.      */
  132. #define midpoint(a,b)\
  133.   (arith_rshift_1(a) + arith_rshift_1(b) + ((a) & (b) & 1) + 1)
  134.     fixed x12 = midpoint(x1, x2);
  135.     fixed y12 = midpoint(y1, y2);
  136.  
  137.     /*
  138.      * pc1 or pc2 may be the same as pc, so we must be a little careful
  139.      * about the order in which we store the results.
  140.      */
  141.     pc1->p1.x = midpoint(x0, x1);
  142.     pc1->p1.y = midpoint(y0, y1);
  143.     pc2->p2.x = midpoint(x2, x3);
  144.     pc2->p2.y = midpoint(y2, y3);
  145.     pc1->p2.x = midpoint(pc1->p1.x, x12);
  146.     pc1->p2.y = midpoint(pc1->p1.y, y12);
  147.     pc2->p1.x = midpoint(x12, pc2->p2.x);
  148.     pc2->p1.y = midpoint(y12, pc2->p2.y);
  149.     if ( pc2 != pc )
  150.       pc2->pt.x = pc->pt.x,
  151.       pc2->pt.y = pc->pt.y;
  152.     pc1->pt.x = midpoint(pc1->p2.x, pc2->p1.x);
  153.     pc1->pt.y = midpoint(pc1->p2.y, pc2->p1.y);
  154. #undef midpoint
  155. }
  156.  
  157. /*
  158.  * Flatten a segment of the path by repeated sampling.
  159.  * 2^k is the number of lines to produce (i.e., the number of points - 1,
  160.  * including the endpoints); we require k >= 1.
  161.  * If k or any of the coefficient values are too large,
  162.  * use recursive subdivision to whittle them down.
  163.  */
  164. int
  165. gx_flatten_sample(gx_path *ppath, int k, curve_segment *pc,
  166.   segment_notes notes)
  167. {    fixed x0, y0;
  168.     /* x1 ... y3 were defined above */
  169.     fixed cx, bx, ax, cy, by, ay;
  170.     fixed ptx, pty;
  171.     fixed x, y;
  172.     /*
  173.      * We can compute successive values by finite differences,
  174.      * using the formulas:
  175.         x(t) =
  176.           a*t^3 + b*t^2 + c*t + d =>
  177.         dx(t) = x(t+e)-x(t) =
  178.           a*(3*t^2*e + 3*t*e^2 + e^3) + b*(2*t*e + e^2) + c*e =
  179.           (3*a*e)*t^2 + (3*a*e^2 + 2*b*e)*t + (a*e^3 + b*e^2 + c*e) =>
  180.         d2x(t) = dx(t+e)-dx(t) =
  181.           (3*a*e)*(2*t*e + e^2) + (3*a*e^2 + 2*b*e)*e =
  182.           (6*a*e^2)*t + (6*a*e^3 + 2*b*e^2) =>
  183.         d3x(t) = d2x(t+e)-d2x(t) =
  184.           6*a*e^3;
  185.         x(0) = d, dx(0) = (a*e^3 + b*e^2 + c*e),
  186.           d2x(0) = 6*a*e^3 + 2*b*e^2;
  187.      * In these formulas, e = 1/2^k; of course, there are separate
  188.      * computations for the x and y values.
  189.      *
  190.      * There is a tradeoff in doing the above computation in fixed
  191.      * point.  If we separate out the constant term (d) and require that
  192.      * all the other values fit in a long, then on a 32-bit machine with
  193.      * 12 bits of fraction in a fixed, k = 4 implies a maximum curve
  194.      * size of 128 pixels; anything larger requires subdividing the
  195.      * curve.  On the other hand, doing the computations in explicit
  196.      * double precision slows down the loop by a factor of 3 or so.  We
  197.      * found to our surprise that the latter is actually faster, because
  198.      * the additional subdivisions cost more than the slower loop.
  199.      *
  200.      * We represent each quantity as I+R/M, where I is an "integer" and
  201.      * the "remainder" R lies in the range 0 <= R < M=2^(3*k).  Note
  202.      * that R may temporarily exceed M; for this reason, we require that
  203.      * M have at least one free high-order bit.  To reduce the number of
  204.      * variables, we don't actually compute M, only M-1 (rmask).  */
  205.     uint i;
  206.     uint rmask;            /* M-1 */
  207.     fixed idx, idy, id2x, id2y, id3x, id3y;        /* I */
  208.     uint rx, ry, rdx, rdy, rd2x, rd2y, rd3x, rd3y;    /* R */
  209.     gs_fixed_point _ss *ppt;
  210. #define max_points 50            /* arbitrary */
  211.     gs_fixed_point points[max_points + 1];
  212.  
  213. top:    x0 = ppath->position.x;
  214.     y0 = ppath->position.y;
  215. #ifdef DEBUG
  216.     if ( gs_debug_c('3') )
  217.       dprintf4("[3]x0=%f y0=%f x1=%f y1=%f\n",
  218.            fixed2float(x0), fixed2float(y0),
  219.            fixed2float(x1), fixed2float(y1)),
  220.       dprintf5("   x2=%f y2=%f x3=%f y3=%f  k=%d\n",
  221.            fixed2float(x2), fixed2float(y2),
  222.            fixed2float(x3), fixed2float(y3), k);
  223. #endif
  224.     {    fixed x01, x12, y01, y12;
  225.         curve_points_to_coefficients(x0, x1, x2, x3, ax, bx, cx,
  226.                          x01, x12);
  227.         curve_points_to_coefficients(y0, y1, y2, y3, ay, by, cy,
  228.                          y01, y12);
  229.     }
  230.  
  231.     if_debug6('3', "[3]ax=%f bx=%f cx=%f\n   ay=%f by=%f cy=%f\n",
  232.           fixed2float(ax), fixed2float(bx), fixed2float(cx),
  233.           fixed2float(ay), fixed2float(by), fixed2float(cy));
  234. #define max_fast (max_fixed / 6)
  235. #define min_fast (-max_fast)
  236. #define in_range(v) (v < max_fast && v > min_fast)
  237.     if ( k == 0 )
  238.     {    /* The curve is very short, or anomalous in some way. */
  239.         /* Just add a line and exit. */
  240.         return gx_path_add_line_notes(ppath, x3, y3, notes);
  241.     }
  242.     if ( k <= k_sample_max &&
  243.          in_range(ax) && in_range(ay) &&
  244.          in_range(bx) && in_range(by) &&
  245.          in_range(cx) && in_range(cy)
  246.        )
  247.     {    x = x0, y = y0;
  248.         rx = ry = 0;
  249.         ppt = points;
  250.         /* Fast check for n == 3, a common special case */
  251.         /* for small characters. */
  252.         if ( k == 1 )
  253.         {
  254. #define poly2(a,b,c)\
  255.   arith_rshift_1(arith_rshift_1(arith_rshift_1(a) + b) + c)
  256.             x += poly2(ax, bx, cx);
  257.             y += poly2(ay, by, cy);
  258. #undef poly2
  259.             if_debug2('3', "[3]dx=%f, dy=%f\n",
  260.                   fixed2float(x - x0), fixed2float(y - y0));
  261.             if_debug3('3', "[3]%s x=%g, y=%g\n",
  262.                   (((x ^ x0) | (y ^ y0)) & float2fixed(-0.5) ?
  263.                    "add" : "skip"),
  264.                   fixed2float(x), fixed2float(y));
  265.             if ( ((x ^ x0) | (y ^ y0)) & float2fixed(-0.5) )
  266.               ppt->x = ptx = x,
  267.               ppt->y = pty = y,
  268.               ppt++;
  269.             goto last;
  270.         }
  271.         else
  272.         {    fixed bx2 = bx << 1, by2 = by << 1;
  273.             fixed ax6 = ((ax << 1) + ax) << 1,
  274.                   ay6 = ((ay << 1) + ay) << 1;
  275. #define adjust_rem(r, q)\
  276.   if ( r > rmask ) q ++, r &= rmask
  277.             const int k2 = k << 1;
  278.             const int k3 = k2 + k;
  279.             rmask = (1 << k3) - 1;
  280.             /* We can compute all the remainders as ints, */
  281.             /* because we know they don't exceed M. */
  282.             /* cx/y terms */
  283.             idx = arith_rshift(cx, k),
  284.               idy = arith_rshift(cy, k);
  285.             rdx = ((uint)cx << k2) & rmask,
  286.               rdy = ((uint)cy << k2) & rmask;
  287.             /* bx/y terms */
  288.             id2x = arith_rshift(bx2, k2),
  289.               id2y = arith_rshift(by2, k2);
  290.             rd2x = ((uint)bx2 << k) & rmask,
  291.               rd2y = ((uint)by2 << k) & rmask;
  292.             idx += arith_rshift_1(id2x),
  293.               idy += arith_rshift_1(id2y);
  294.             rdx += ((uint)bx << k) & rmask,
  295.               rdy += ((uint)by << k) & rmask;
  296.             adjust_rem(rdx, idx);
  297.             adjust_rem(rdy, idy);
  298.             /* ax/y terms */
  299.             idx += arith_rshift(ax, k3),
  300.               idy += arith_rshift(ay, k3);
  301.             rdx += (uint)ax & rmask,
  302.               rdy += (uint)ay & rmask;
  303.             adjust_rem(rdx, idx);
  304.             adjust_rem(rdy, idy);
  305.             id2x += id3x = arith_rshift(ax6, k3),
  306.               id2y += id3y = arith_rshift(ay6, k3);
  307.             rd2x += rd3x = (uint)ax6 & rmask,
  308.               rd2y += rd3y = (uint)ay6 & rmask;
  309.             adjust_rem(rd2x, id2x);
  310.             adjust_rem(rd2y, id2y);
  311. #undef adjust_rem
  312.         }
  313.     }
  314.     else
  315.     {    /*
  316.          * Curve is too long.  Break into two pieces and recur.
  317.          */
  318.         curve_segment cseg;
  319.         int code;
  320.  
  321.         k--;
  322.         split_curve_midpoint(x0, y0, pc, &cseg, pc);
  323.         code = gx_flatten_sample(ppath, k, &cseg, notes);
  324.         if ( code < 0 )
  325.           return code;
  326.         notes |= sn_not_first;
  327.         goto top;
  328.     }
  329.     if_debug1('2', "[2]sampling k=%d\n", k);
  330.     ptx = x0, pty = y0;
  331.     for ( i = (1 << k) - 1; ; )
  332.     {    int code;
  333. #ifdef DEBUG
  334.         if ( gs_debug_c('3') )
  335.           dprintf4("[3]dx=%f+%d, dy=%f+%d\n",
  336.                fixed2float(idx), rdx,
  337.                fixed2float(idy), rdy),
  338.           dprintf4("   d2x=%f+%d, d2y=%f+%d\n",
  339.                fixed2float(id2x), rd2x,
  340.                fixed2float(id2y), rd2y),
  341.           dprintf4("   d3x=%f+%d, d3y=%f+%d\n",
  342.                fixed2float(id3x), rd3x,
  343.                fixed2float(id3y), rd3y);
  344. #endif
  345. #define accum(i, r, di, dr)\
  346.   if ( (r += dr) > rmask ) r &= rmask, i += di + 1;\
  347.   else i += di
  348.         accum(x, rx, idx, rdx);
  349.         accum(y, ry, idy, rdy);
  350.         if_debug3('3', "[3]%s x=%g, y=%g\n",
  351.               (((x ^ ptx) | (y ^ pty)) & float2fixed(-0.5) ?
  352.                "add" : "skip"),
  353.               fixed2float(x), fixed2float(y));
  354.         /*
  355.          * Skip very short segments -- those that lie entirely within
  356.          * a square half-pixel.  Also merge nearly collinear
  357.          * segments -- those where one coordinate of all three points
  358.          * (the two endpoints and the midpoint) lie within the same
  359.          * half-pixel and both coordinates are monotonic.
  360.          * Note that ptx/y, the midpoint, is the same as ppt[-1].x/y;
  361.          * the previous point is ppt[-2].x/y.
  362.          */
  363. #define coord_near(v, ptv)\
  364.   (!( ((v) ^ (ptv)) & float2fixed(-0.5) ))
  365. #define coords_in_order(v0, v1, v2)\
  366.   ( (((v1) - (v0)) ^ ((v2) - (v1))) >= 0 )
  367.         if ( coord_near(x, ptx) )
  368.           {    /* X coordinates are within a half-pixel. */
  369.             if ( coord_near(y, pty) )
  370.               goto skip;        /* short segment */
  371. #if MERGE_COLLINEAR_SEGMENTS
  372.             /* Check for collinear segments. */
  373.             if ( ppt > points + 1 && coord_near(x, ppt[-2].x) &&
  374.                  coords_in_order(ppt[-2].x, ptx, x) &&
  375.                  coords_in_order(ppt[-2].y, pty, y)
  376.                )
  377.               --ppt;    /* remove middle point */
  378. #endif
  379.           }
  380.         else if ( coord_near(y, pty) )
  381.           {    /* Y coordinates are within a half-pixel. */
  382. #if MERGE_COLLINEAR_SEGMENTS
  383.             /* Check for collinear segments. */
  384.             if ( ppt > points + 1 && coord_near(y, ppt[-2].y) &&
  385.                  coords_in_order(ppt[-2].x, ptx, x) &&
  386.                  coords_in_order(ppt[-2].y, pty, y)
  387.                )
  388.               --ppt;    /* remove middle point */
  389. #endif
  390.           }
  391. #undef coord_near
  392. #undef coords_in_order
  393.         /* Add a line. */
  394.         if ( ppt == &points[max_points] )
  395.           { if ( notes & sn_not_first )
  396.               code = gx_path_add_lines_notes(ppath, points, max_points,
  397.                              notes);
  398.             else
  399.               { code = gx_path_add_line_notes(ppath, points[0].x,
  400.                               points[0].y, notes);
  401.                 if ( code < 0 )
  402.               return code;
  403.             code = gx_path_add_lines_notes(ppath, points,
  404.                     max_points - 1, notes | sn_not_first);
  405.               }
  406.             if ( code < 0 )
  407.               return code;
  408.             ppt = points;
  409.             notes |= sn_not_first;
  410.           }
  411.         ppt->x = ptx = x;
  412.         ppt->y = pty = y;
  413.         ppt++;
  414. skip:        if ( --i == 0 )
  415.           break;        /* don't bother with last accum */
  416.         accum(idx, rdx, id2x, rd2x);
  417.         accum(id2x, rd2x, id3x, rd3x);
  418.         accum(idy, rdy, id2y, rd2y);
  419.         accum(id2y, rd2y, id3y, rd3y);
  420. #undef accum
  421.     }
  422. last:    if_debug2('3', "[3]last x=%g, y=%g\n",
  423.           fixed2float(x3), fixed2float(y3));
  424.     if ( ppt > points )
  425.       { int count = ppt + 1 - points;
  426.         gs_fixed_point _ss *pts = points;
  427.  
  428.         if ( !(notes & sn_not_first) )
  429.           { int code = gx_path_add_line_notes(ppath,
  430.                           points[0].x, points[0].y,
  431.                           notes);
  432.             if ( code < 0 )
  433.           return code;
  434.         ++pts, --count;
  435.         notes |= sn_not_first;
  436.           }
  437.         ppt->x = x3, ppt->y = y3;
  438.         return gx_path_add_lines_notes(ppath, pts, count, notes);
  439.       }
  440.     return gx_path_add_line_notes(ppath, x3, y3, notes);
  441. }
  442.  
  443. #undef x1
  444. #undef y1
  445. #undef x2
  446. #undef y2
  447. #undef x3
  448. #undef y3
  449.